summaryrefslogtreecommitdiff
path: root/app/[lng]/engineering/(engineering)/document-list-only/layout.tsx
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-12-01 19:52:06 +0900
committerjoonhoekim <26rote@gmail.com>2025-12-01 19:52:06 +0900
commit44b74ff4170090673b6eeacd8c528e0abf47b7aa (patch)
tree3f3824b4e2cb24536c1677188b4cae5b8909d3da /app/[lng]/engineering/(engineering)/document-list-only/layout.tsx
parent4953e770929b82ef77da074f77071ebd0f428529 (diff)
(김준회) deprecated code 정리
Diffstat (limited to 'app/[lng]/engineering/(engineering)/document-list-only/layout.tsx')
-rw-r--r--app/[lng]/engineering/(engineering)/document-list-only/layout.tsx17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/[lng]/engineering/(engineering)/document-list-only/layout.tsx b/app/[lng]/engineering/(engineering)/document-list-only/layout.tsx
deleted file mode 100644
index 17e78c0a..00000000
--- a/app/[lng]/engineering/(engineering)/document-list-only/layout.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import { Shell } from "@/components/shell"
-import VendorDocumentListClientEvcp from "@/components/document-lists/vendor-doc-list-client-evcp"
-
-// Layout 컴포넌트는 서버 컴포넌트입니다
-export default async function EvcpDocuments({
- children,
-}: {
- children: React.ReactNode
-}) {
- return (
- <Shell className="gap-2">
- <VendorDocumentListClientEvcp>
- {children}
- </VendorDocumentListClientEvcp>
- </Shell>
- )
-}